home *** CD-ROM | disk | FTP | other *** search
/ Shareware Extravaganza - Disc 4 / Shareware Extravaganza - Over 25,000 Programs (The Ultimate Shareware Company)(Disc 4 of 4)(1993).iso / cad / quikcmd2.zip / FASTLAYR.DOC < prev    next >
Text File  |  1990-10-23  |  8KB  |  331 lines

  1.  
  2.  
  3.                             QUICK COMMAND version 2.0
  4.  
  5.                          Copyright 1989, 1990 Dan Jincks
  6.  
  7.  
  8.                      FASTLAYER.LSP is module of QUICK COMMAND
  9.  
  10.  
  11.                This is SHAREWARE, it is NOT Public Domain software.
  12.  
  13.                This code or any part of this code may not be reproduced
  14.                in any publication without prior written permission.
  15.  
  16.                Printed copy of this code or any part of this code may NOT
  17.                be distributed without prior written permission.
  18.  
  19.                Hard copy may only be made for reference purposes by
  20.                the end user.
  21.  
  22.  
  23.                                 Dan Jincks
  24.                               Box 155A HCR 77
  25.                             Annapolis, MO 63620
  26.  
  27.  
  28.  
  29.        You are granted a limited license to use FASTLAYR.LSP, a module of
  30.        QUICK COMMAND, for a 30 day trial period.  If you wish to continue
  31.        using any or all of QUICK COMMAND after the trial period, you must
  32.        become a registered user.  As a registered user, you may use QUICK
  33.        COMMAND on 1 workstation or terminal.  Additional registrations must
  34.        be bought for each additional workstation or terminal.  To become a
  35.        registered user, fill out the order form that can be printed out
  36.        from ORDERQC.DOC
  37.  
  38.  
  39.        You may send copies of QUICK COMMAND to friends and associates if
  40.        you abide by the following rules:
  41.  
  42.        1.  It may only be distributed in the original unmodified form.
  43.        2.  All original files must be included.
  44.        3.  No addition files may be added.
  45.        4.  If other files will be on the same disk, QUICK COMMAND files
  46.            must be in a library format such as ".ARC" called "QUICKCMD",
  47.            or else be put alone in a subdirectory called "QUICKCMD".
  48.        5.  You may not sell QUICK COMMAND or any part of it.
  49.        6.  You are not allowed to charge more then $5 to cover the cost of
  50.            copying and distribution.
  51.        7.  You may not distribute any printed copy of the contents of QUICK
  52.            COMMAND.
  53.  
  54.  
  55.        These AutoLISP commands and functions are designed to save you time,
  56.        and saving time means saving money.  The registration fee is very
  57.        modest compared to the savings, and much less expensive then typical
  58.        third party AutoCAD software.  Be sure to registar if you continue
  59.        to use them.
  60.                                                                 DAN
  61.  
  62.  
  63.          AutoCAD and AutoLISP are registered trade marks of Autodesk Inc.
  64.  
  65.  
  66.        *
  67.        *****************************  1  **********************************
  68.  
  69.        LFA
  70.  
  71.        PURPOSE:   Freeze all layers, except current.
  72.  
  73.        SYNOPSIS:   Freezes all layers except the current layer.
  74.  
  75.        LIMITATIONS:   None.
  76.  
  77.        INPUT:   None.
  78.  
  79.        RESULTS:   All layers frozen, except current layer.
  80.  
  81.        USES:   Increase drawing speed and/or reduce clutter.
  82.  
  83.        ********************************************************************
  84.  
  85.        LFN
  86.  
  87.        PURPOSE:   Freeze Layer by Name.
  88.  
  89.        SYNOPSIS:   User supplies name of layer to be frozen.
  90.  
  91.        LIMITATIONS:   None.
  92.  
  93.        INPUT:   Layer name.
  94.  
  95.        RESULTS:   Layer is frozen.
  96.  
  97.        USES:   Command short cut.
  98.  
  99.        ********************************************************************
  100.  
  101.        LFP
  102.  
  103.        PURPOSE:   Freeze Layer by Picking an entity.
  104.  
  105.        SYNOPSIS:   User picks an entity and the layer name is displayed,
  106.        and is offered the option to highlight all entities on the layer.
  107.        The layer is then frozen.
  108.  
  109.        LIMITATIONS:   None.
  110.  
  111.        INPUT:   Screen pick.
  112.  
  113.        RESULTS:   Selected layer is frozen.
  114.  
  115.        USES:   Rapidly clearing clutter from a drawing without needing to
  116.        know layer names.
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.        *
  133.        *****************************  2  **********************************
  134.  
  135.        LHN
  136.  
  137.        PURPOSE:   Highlight a Named Layer.
  138.  
  139.        SYNOPSIS:   User supplies the name of a layer and all entities on
  140.        that layer become highlighted.  Highlighting is done with the SELECT
  141.        command, so the entire layer may be acted upon by using the
  142.        "Previous" option in the next command.  This works for both AutoCAD
  143.        and AutoLISP commands.
  144.  
  145.        LIMITATIONS:   None.
  146.  
  147.        INPUT:   Layer name.
  148.  
  149.        RESULTS:   All entities on the named layer become highlighted.
  150.  
  151.        USES:   Orientation tool to understand what is on a layer.  Select
  152.        the entire layer to be acted on by a command.
  153.  
  154.        ********************************************************************
  155.  
  156.        LHP
  157.  
  158.        PURPOSE:   Highlight a Layer by Picking an entity.
  159.  
  160.        SYNOPSIS:   User picks an entity, the layer name is displayed and
  161.        all entities on that layer become highlighted.  The highlighting is
  162.        done with the SELECT command, so the entire layer may be acted upon
  163.        by the next command by using the "Previous" option.  This works for
  164.        both AutoCAD and AutoLISP commands.
  165.  
  166.        LIMITATIONS:   None
  167.  
  168.        INPUT:   Screen pick.
  169.  
  170.        RESULTS:   All entities on the selected layer become highlighted.
  171.  
  172.        USES:   Orientation tool find out what layer an entity is on, and
  173.        what else is on the same layer.  Pre-select an entire layer to be
  174.        acted upon by a command.
  175.  
  176.        *******************************************************************
  177.  
  178.        LMP
  179.  
  180.        PURPOSE:   Move entities to different layer, by picking an entity on
  181.        the target layer.
  182.  
  183.        SYNOPSIS:   User picks an entity on the target layer that entities
  184.        will be moved on to.  The name of the picked layer is displayed, and
  185.        the layer may optionally be highlighted.  Entities to be moved are
  186.        then selected and moved.  If a "Previous" selection set is to be
  187.        used, do not use the highlighting option or your set will be lost
  188.        since the highlighting is done with the SELECT command.
  189.  
  190.        LIMITATIONS:   None.
  191.  
  192.        INPUT:   Screen pick, Build selection set to move.
  193.  
  194.        RESULTS:   Selected entities will be moved to the target layer.
  195.  
  196.        USES:   Rapidly restructure contents of the drawing layers.
  197.  
  198.        *
  199.        *****************************  3  **********************************
  200.  
  201.        LN
  202.  
  203.        PURPOSE:   Display list of Layer Names.
  204.  
  205.        SYNOPSIS:   List of all of the defined layers in a drawing are
  206.        displayed.
  207.  
  208.        LIMITATIONS:   None.
  209.  
  210.        INPUT:   None.
  211.  
  212.        RESULTS:   List of Layers are displayed.
  213.  
  214.        USES:   Short cut to LAYER command, "?" option.
  215.  
  216.        ********************************************************************
  217.  
  218.        LSN
  219.  
  220.        PURPOSE:   Set current Layer by Name.
  221.  
  222.        SYNOPSIS:   User supplies layer name to set current layer and
  223.        returned to the graphics screen.
  224.  
  225.        LIMITATIONS:   None.
  226.  
  227.        INPUT:   Layer name.
  228.  
  229.        RESULTS:   New current layer.
  230.  
  231.        USES:   Short cut to LAYER command.
  232.  
  233.        ********************************************************************
  234.  
  235.        LTA
  236.  
  237.        PURPOSE:   Thaw All Layers.
  238.  
  239.        SYNOPSIS:   All layers in a drawing are thawed by this command.
  240.  
  241.        LIMITATIONS:   None.
  242.  
  243.        INPUT:   None.
  244.  
  245.        RESULTS:   All frozen layers in the drawing are thawed.
  246.  
  247.        USES:   Short cut to the LAYER command.
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.        *
  265.        *****************************  4  **********************************
  266.  
  267.        LTN
  268.  
  269.        PURPOSE:   Thaw a Layer by Name.
  270.  
  271.        SYNOPSIS:   User supplies name of the layer to be thawed. The layer
  272.        is thawed and you are returned to the graphics screen.
  273.  
  274.        LIMITATIONS:   None.
  275.  
  276.        INPUT:   Layer name.
  277.  
  278.        RESULTS:   Named layer is thawed.
  279.  
  280.        USES:   Short cut to the LAYER command.
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.        *
  331.